{
"mcpServers": {
"abp-mcp-server": {
"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.
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 121 days ago. 1 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.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Abp Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
I have created the ABP MCP Server as a C# Console Application. It implements the Model Context Protocol to provide ABP Framework related tools to AI agents.
ABP Documentation Search
(
abp.docs.search
)
abp.io/docs to find relevant documentation pages.GitHub Issues Search
(
abp.github.issues.search
)
abpframework/abp repository issues.Support Questions Search
(
abp.support.questions.search
)
abp.io/support/questions for community questions.Community Articles Search
(
abp.community.articles.search
)
abp.io/community/articles for articles.AbpMcpServer.csproj: Main project file (.NET 8/9).
Program.cs
: Entry point, dependency injection setup.
Services/McpServer.cs
: Handles JSON-RPC over STDIO.
Services/McpRouter.cs
: Routes requests to tools.
Tools/*.cs: Implementation of specific tools.
Models/JsonRpc.cs
: JSON-RPC data models.
Build
:
dotnet build
Run
:
dotnet run
(Note: It expects JSON-RPC input via Stdin)
To use this server with AntiGravity or Cursor, you need to configure it in the MCP settings.
{
"mcpServers": {
"abp-helper": {
"command": "dotnet",
"args": [
"run",
"--project",
"d:/github/alper/abp-mcp-server/AbpMcpServer.csproj"
]
}
}
}
Here are the prompt templates you requested to make the best use of this server.
SYSTEM:
You are an expert ABP Framework development assistant.
You ONLY answer based on information retrieved from the MCP tools.
Do not hallucinate APIs or features.
USER:
<<User Question>>
TOOLS:
- mcp.abp.docs.search
- mcp.abp.github.issues.search
- mcp.abp.support.questions.search
- mcp.abp.community.articles.search
PLAN:
1) Search docs using user query to find official guidance.
2) Search GitHub matching issues to see if it's a known bug or feature request.
3) Search support if unresolved to find community solutions.
4) Search community articles for tutorials or deep dives.
5) Generate concise actionable fix based on findings.
6) Provide short code sample if applicable.
@ABP Ask MCP
- Diagnose the following code:
```csharp
<<Selected Code>>
#### 3. Architecture Question Prompt
```markdown
Compare ABP documentation and community articles regarding:
<<Topic>>
Return a short decision summary on the best approach.
Resolve the following error:
<<Error Message>>
Using:
- abp.docs.search
- abp.github.issues.search
- abp.support.questions.search