Om Apex MCP服务器
一种模型上下文协议(MCP)服务器,在所有Claude接口(聊天、协作和Claude代码)上提供持久内存和上下文。
目的
此MCP服务器用作:
- 统一内存 -在所有Claude会话中维护业务上下文、决策和项目状态
- 文档访问 -提供对Om Apex Holdings文档的可搜索访问
- 任务跟踪 -管理待处理的操作和项目任务
- 概念验证 -为Om AI Solutions客户演示MCP服务器功能
项目结构
om-apex-mcp/
├── src/om_apex_mcp/
│ ├── __init__.py
│ ├── server.py # Main MCP server
│ ├── tools/ # MCP tools (actions Claude can take)
│ │ ├── __init__.py
│ │ ├── context.py # Get/update business context
│ │ ├── documents.py # Search/read documents
│ │ └── tasks.py # Task management
│ └── resources/ # MCP resources (data Claude can read)
│ ├── __init__.py
│ ├── company.py # Company information
│ └── decisions.py # Decision log
├── data/
│ ├── context/ # Business context JSON files
│ └── documents/ # Document store
├── tests/
├── docs/
│ └── BUILD_JOURNAL.md # Development journey documentation
├── CLAUDE.md # Context file for Claude Code
├── pyproject.toml # Python project config
└── README.md技术栈
- Python 3.11+ -匹配Om AI解决方案架构决策
- MCP-SDK -官方Anthropic MCP Python SDK
- 快速API -对于所需的任何HTTP端点
- 派丹蒂克 -数据验证
入门指南
看 BUILD_JOURNAL.md 完成整个开发过程。
连接到克劳德
构建后,此服务器连接到:
- Claude Desktop(聊天和共同工作)通过
claude_desktop_config.json - Claude Code通过其MCP配置
______________________________________________________________________
*Om Apex控股公司的一部分|由Nishad Tambe建造*
