Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"abp-helper": {
"args": [
"run",
"--project",
"d:/github/alper/abp-mcp-server/AbpMcpServer.csproj"
],
"command": "dotnet"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
Manage Supabase projects — databases, auth, storage, and edge functions
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
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