MCP Server Registry
| Name | Endpoint | Version | Auth | Tools | Status | Actions | |
|---|---|---|---|---|---|---|---|
| No MCP servers registered yet. Add your first server. | |||||||
About the MCP Registry
The MCP Server Registry tracks Model Context Protocol servers that integrate with Tiknix.
Registered servers can be discovered via the list_mcp_servers MCP tool or the
public JSON API.
Auth Types
- none No authentication required
- basic HTTP Basic Auth (username:password)
- bearer Bearer token authentication
- apikey API key authentication
Installing in Claude Code
To connect Claude Code to an MCP server from this registry, add the server configuration to your settings.
Global Settings
Edit ~/.claude/settings.json to make the server available in all projects:
{
"mcpServers": {
"server-name": {
"type": "http",
"url": "https://example.com/mcp/message",
"headers": {
"Authorization": "Bearer YOUR_API_TOKEN"
}
}
}
}
Project Settings
Create .mcp.json in your project root for project-specific servers:
{
"mcpServers": {
"server-name": {
"type": "http",
"url": "https://example.com/mcp/message",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Tip: After adding a server, restart Claude Code or run
/mcp to refresh the server list.
For the built-in Tiknix server, visit /mcp for auto-config and token generation.