- Home
- MCP servers
- Expert
Expert
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mcp-mirror-crazyrabbitltc_mcp-expert-server": {
"command": "node",
"args": [
"/ABSOLUTE/PATH/TO/expert-server/build/index.js"
],
"env": {
"ANTHROPIC_API_KEY": "your_api_key_here"
}
}
}
}You run an MCP server that uses Claude AI to generate queries and provide documentation context from your API docs. It exposes two practical tools you can use in your workflows: create-query to turn natural language requests into structured queries, and documentation to retrieve relevant information from your API docs. This setup helps you design queries quickly and access accurate documentation without leaving your development environment.
How to use
You connect an MCP client to the Expert server and use the two built-in tools to accelerate API exploration. Use create-query when you want to translate a natural-language request into a concrete query you can run against your API. Use documentation to retrieve targeted explanations or guidance drawn from your API documentation files.
How to install
Prerequisites you must have before running the server are clear and straightforward.
- Node.js >= 18
- An Anthropic API key for Claude
Available tools
create-query
Generates a query from a natural-language request by analyzing your API docs and returning a structured query.
documentation
Returns relevant documentation information based on your questions by searching the provided API documentation files.