MCP (Model Context Protocol) server for AFSIM simulation framework. Provides natural language scenario generation, entity management, simulation control, and result analysis. Enables LLMs to interact with AFSIM through standardized tools.
{
"mcpServers": {
"afsim-mcp": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP (Model Context Protocol) server for AFSIM simulation framework. Provides natural language scenario generation, entity management, simulation control, and result analysis. Enables LLMs to interact with AFSIM through standardized tools.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 7 days ago. 8 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for AFSIM_MCP and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
本项目是一个本地 MCP 服务器,用于把 AFSIM 能力接入支持 MCP 的客户端(如 Cursor、Claude Desktop、VS Code、Trae、OpenCode 等)。
仓库只包含 MCP 服务源码与配置脚本,不附带测试工程、测试数据、示例生成产物或本地运行状态。实际使用时,请把 AFSIM 工程目录通过配置指向你自己的 project_root。
如需给大模型或团队成员提供统一项目背景与建模建议,可参考仓库中的 memory.md。
如需评估当前项目真实能力边界,可参考 CAPABILITY_ASSESSMENT.md;如需约束接入大模型的标准工作流,可参考 MODEL_WORKFLOW_PROMPT.md。
在项目目录执行:
python configure_mcp.py
脚本会按提示询问并写入本地配置,同时输出客户端所需的 MCP 配置片段。
mission.exe 等可执行文件所在目录C:\Users\你的用户名\.afsim_mcpproject_root\mcp_state;客户端通常只需要传入 AFSIM_MCP_CONFIG_DIR 用于定位配置文件,如需覆盖状态目录可额外设置 AFSIM_MCP_STATE_DIR如果检测到已有配置,脚本会显示旧值;直接回车表示保留旧值。
脚本会输出两段内容:
{
"mcpServers": {
"afsim": {
"command": "C:\\path\\to\\python.exe",
"args": ["C:\\path\\to\\AFSIM_MCP\\transport\\stdio.py"],
"env": {
"AFSIM_MCP_CONFIG_DIR": "C:\\Users\\你的用户名\\.afsim_mcp"
}
}
}
}
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"afsim": {
"type": "local",
"command": [
"C:\\path\\to\\python.exe",
"C:\\path\\to\\AFSIM_MCP\\transport\\stdio.py"
],
"enabled": true,
"environment": {
"AFSIM_MCP_CONFIG_DIR": "C:\\Users\\你的用户名\\.afsim_mcp"
}
}
}
}