About
Abp — Model Context Protocol server
README
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.
Features Implemented
ABP Documentation Search
(
abp.docs.search)
- Scrapes
abp.io/docsto find relevant documentation pages.
- Scrapes
GitHub Issues Search
(
abp.github.issues.search)
- Uses GitHub REST API to search
abpframework/abprepository issues.
- Uses GitHub REST API to search
Support Questions Search
(
abp.support.questions.search)
- Scrapes
abp.io/support/questionsfor community questions.
- Scrapes
Community Articles Search
(
abp.community.articles.search)
- Scrapes
abp.io/community/articlesfor articles.
- Scrapes
Project Structure
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.
How to Run
Build
:
dotnet buildRun
:
dotnet run(Note: It expects JSON-RPC input via Stdin)
AntiGravity Integration
To use this server with AntiGravity or Cursor, you need to configure it in the MCP settings.
Configuration
{
"mcpServers": {
"abp-helper": {
"command": "dotnet",
"args": [
"run",
"--project",
"d:/github/alper/abp-mcp-server/AbpMcpServer.csproj"
]
}
}
}
Prompt Templates
Here are the prompt templates you requested to make the best use of this server.
1. Local Reasoning Model Prompt
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.
2. Fix Code Prompt
@ABP Ask MCP
- Diagnose the following code:
```csharp
<<Selected Code>>
- Find documentation reference for the used classes.
- Find similar GitHub issues if there are potential bugs.
- Propose a fix or improvement.
- Produce example code.
#### 3. Architecture Question Prompt
```markdown
Compare ABP documentation and community articles regarding:
<<Topic>>
Return a short decision summary on the best approach.
4. Error Resolution Prompt
Resolve the following error:
<<Error Message>>
Using:
- abp.docs.search
- abp.github.issues.search
- abp.support.questions.search
Installing Abp
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/ebicoglu/abp-mcp-serverFAQ
Is Abp MCP free?
Yes, Abp MCP is free — one-click install via Unyly at no cost.
Does Abp need an API key?
No, Abp runs without API keys or environment variables.
Is Abp hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Abp in Claude Desktop, Claude Code or Cursor?
Open Abp on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Abp with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
