This is a pre-built Model Context Protocol (MCP) server for Tyk documentation, designed to enable AI assistants to search the Tyk API Management documentation using natural language queries.
Built on top of the @buger/probe-docs-mcp
project, this package comes with Tyk’s documentation already bundled, offering a plug-and-play experience.
You can run the Tyk Docs MCP Server with npx
:
npx -y @tyk-technologies/docs-mcp@latest
This will start a local MCP server with a tool named search_tyk_docs
, exposing the Tyk documentation to connected AI assistants.
If you are using MCP JSON configuration you can use this snippet:
"mcpServers": {
...
"tyk-docs-search": {
"command": "npx",
"args": [
"-y",
"@tyk-technologies/docs-mcp@latest",
],
"enabled": true
}
...
}
No configuration is required. All content and settings (tool name, description, source) are pre-bundled.
- Tool Name:
search_tyk_docs
- Tool Description:
Search Tyk API Management Documentation
- Documentation Source: https://github.com/TykTechnologies/tyk-docs
If needed, you can fork this project and modify the configuration in docs-mcp.config.json
before rebuilding and publishing your own version.
This server is built using the Probe Docs MCP project.
MIT