OSIM MCP Server is a standardized MCP server implementation providing structured security data standards for AI applications. Using the MCP protocol, AI assistants can easily query, browse, and retrieve security-related data, including alerts, assets, logs, events, and device detections.
{
"mcpServers": {
"osim-mcp-server-java": {
"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.
OSIM MCP Server is a standardized MCP server implementation providing structured security data standards for AI applications. Using the MCP protocol, AI assistants can easily query, browse, and retrieve security-related data, including alerts, assets, logs, events, and device detections.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 111 days ago.
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 Osim Mcp Server Java and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
基于 Spring AI 的 Model Context Protocol (MCP) 服务器,为 AI 应用提供 OSIM (Open Security Information Model) 数据标准 schema 的查询和访问能力。
listSchemaNames、describeSchemas、getSchema 工具和资源访问接口# 克隆仓库
git clone https://github.com/osim-group/osim-mcp-server.git
cd osim-mcp-server
# 构建项目(会自动下载最新的 schemas)
./gradlew build
# 运行服务器
./gradlew bootRun
或使用打包后的 JAR:
java -jar build/libs/osim-mcp-server-1.0.0.jar
服务器默认通过 STDIO 方式运行,配置文件位于 src/main/resources/application.properties:
# MCP Server Configuration
spring.ai.mcp.server.enabled=true
spring.ai.mcp.server.stdio=true
spring.ai.mcp.server.name=osim-mcp-server
spring.ai.mcp.server.version=1.0.0
# Schema Repository Configuration
osim.schema.repository.url=https://raw.githubusercontent.com/osim-group/osim-schema/main/schemas
osim.schema.github.auto-update=false
配置说明:
spring.main.web-application-type=none:禁用 Web 服务器,使用 STDIO 通信osim.schema.github.auto-update:false 使用内置 schemas(快速启动),true 自动获取最新版本listSchemaNames列出所有可用的 schema 名称,格式:{group}.{category}.{title}
示例:
log.network_session_audit.http_auditalert.network_attack.apt_attackasset.business_asset.web_applicationdescribeSchemas获取指定 schema 列表的描述信息。
参数:schemaNames (List)
getSchema获取指定 schema 的完整字段定义。
参数:schemaPath (String),格式:{group}.{category}.{title}
通过资源 URI 访问 schema 文件内容:
URI 格式:data-standard://{group}/{category}/{title}
示例:
data-standard://log/network_session_audit/http_auditdata-standard://alert/network_attack/apt_attack在配置文件中添加:
{
"mcpServers": {
"osim-mcp-server": {
"command": "java",
"args": ["-jar", "/path/to/osim-mcp-server-1.0.0.jar"]
}
}
}
在 MCP 配置中添加:
{
"mcpServers": {
"osim-mcp-server": {
"command": "java",
"args": ["-jar", "/path/to/osim-mcp-server-1.0.0.jar"]
}
}
}
数据标准来源:项目内置 schemas(构建时打包到 jar),支持从 osim-group/osim-schema 自动更新。
osim-mcp-server/
├── src/main/java/ai/osim/osimmcpserver/
│ ├── OsimMcpServerApplication.java
│ ├── config/McpServerConfiguration.java
│ ├── loader/DataStandardLoader.java
│ ├── resource/DataStandardResourceConfiguration.java
│ └── service/DataStandardService.java
├── src/main/resources/
│ ├── application.properties
│ └── schemas/ # 内置数据标准 schema 文件
├── build.gradle
└── README.md
# 构建项目
./gradlew build
# 运行测试
./gradlew test
# 下载 schemas
./gradlew downloadSchemas
欢迎贡献!请遵循以下步骤:
git checkout -b feature/AmazingFeature)git commit -m 'Add some AmazingFeature')git push origin feature/AmazingFeature)本项目采用 Apache License 2.0 许可证。详情请参阅 LICENSE 文件。