๐ง MCP (Model Context Protocol) Integration Guide
NeuroLink Universal AI Platform with External Server Connectivity
๐ Overviewโ
NeuroLink now supports the Model Context Protocol (MCP) for seamless integration with external servers and tools. This enables unlimited extensibility through the growing MCP ecosystem while maintaining NeuroLink's simple interface.
Enhanced MCP Integration with Factory Patternsโ
import { NeuroLink } from "@juspay/neurolink";
const neurolink = new NeuroLink();
// NEW: Enhanced MCP integration with generate()
const result = await neurolink.generate({
input: { text: "List files in current directory using MCP" },
provider: "google-ai",
disableTools: false, // Enable MCP tool usage
});
// Alternative approach using legacy method (backward compatibility)
const legacyResult = await neurolink.generate({
prompt: "List files in current directory using MCP",
provider: "google-ai",
disableTools: false,
});
What is MCP?โ
The Model Context Protocol is a standardized way for AI applications to connect to external tools and data sources. It enables:
- โ External Tool Integration - Connect to filesystem, databases, APIs, and more
- โ Standardized Communication - JSON-RPC 2.0 protocol over multiple transports
- โ Tool Discovery - Automatic discovery of available tools and capabilities
- โ Secure Execution - Controlled access to external resources
- โ Ecosystem Compatibility - Works with 65+ community servers
๐ Quick Startโ
1. Install Popular MCP Serversโ
# Install filesystem server for file operations
npx neurolink mcp install filesystem
# Install GitHub server for repository management
npx neurolink mcp install github
# Install database server for SQL operations
npx neurolink mcp install postgres
2. Test Connectivityโ
# Test server connectivity and discover tools
npx neurolink mcp test filesystem
# List all configured servers with status
npx neurolink mcp list --status
3. ๐ Programmatic Server Managementโ
NEW! Add MCP servers dynamically at runtime:
import { NeuroLink } from "@juspay/neurolink";
const neurolink = new NeuroLink();
// Add external servers dynamically
await neurolink.addExternalMCPServer("bitbucket", {
command: "npx",
args: ["-y", "@nexus2520/bitbucket-mcp-server"],
env: {
BITBUCKET_USERNAME: "your-username",
BITBUCKET_APP_PASSWORD: "your-token",
},
});
// Add database integration
await neurolink.addExternalMCPServer("database", {
command: "node",
args: ["./custom-db-server.js"],
env: { DB_CONNECTION: "postgresql://..." },
});
// Verify registration
const status = await neurolink.getMCPStatus();
console.log("Active servers:", status.totalServers);
4. Execute Tools (Planned)โ
This feature is planned for a future release.
# Execute tools from connected servers (planned โ not yet implemented)
npx neurolink mcp exec filesystem read_file --params '{"path": "README.md"}'
npx neurolink mcp exec github create_issue --params '{"title": "New feature", "body": "Description"}'
๐ MCP CLI Commands Referenceโ
Server Managementโ
Install Popular Serversโ
neurolink mcp install <server>
Available servers:
filesystem- File and directory operationsgithub- GitHub repository managementpostgres- PostgreSQL database operationsbrave-search- Web search capabilitiespuppeteer- Browser automation
Example:
neurolink mcp install filesystem
# โ
Installed MCP server: filesystem
# ๐ก Test it with: neurolink mcp test filesystem
Add Custom Serversโ
neurolink mcp add <name> <command> [options]
Options:
--args- Command arguments (array)--transport- Transport type (stdio|sse|websocket|http)--url- URL for SSE/WebSocket/HTTP transport--headers- HTTP headers for authentication (JSON)--env- Environment variables (JSON)--cwd- Working directory
Examples:
# Add custom server with arguments
neurolink mcp add myserver "python /path/to/server.py" --args "arg1,arg2"
# Add SSE server
neurolink mcp add webserver "http://localhost:8080" --transport sse --url "http://localhost:8080/mcp"
# Add HTTP remote server with authentication
neurolink mcp add remote-api "https://api.example.com/mcp" --transport http --url "https://api.example.com/mcp" --headers '{"Authorization": "Bearer YOUR_TOKEN"}'
# Add server with environment variables
neurolink mcp add dbserver "npx db-mcp-server" --env '{"DB_URL": "postgresql://..."}'
List Configured Serversโ
neurolink mcp list [--status]
Example output:
๐ Configured MCP servers (2):
๐ง filesystem
Command: npx -y @modelcontextprotocol/server-filesystem /
Transport: stdio
โ filesystem: โ
Available
๐ง github
Command: npx @modelcontextprotocol/server-github
Transport: stdio
โ github: โ Not available
Test Server Connectivityโ
neurolink mcp test <server>
Example output:
๐ Testing MCP server: filesystem
โ โ
Connection successful!
๐ Server Capabilities:
Protocol Version: 2024-11-05
Tools: โ
Supported
๐ ๏ธ Available Tools:
โข read_file: Read file contents from filesystem
โข write_file: Create/overwrite files
โข edit_file: Make line-based edits
โข create_directory: Create directories
โข list_directory: List directory contents
+ 6 more tools...
Remove Serversโ
neurolink mcp remove <server>
โ๏ธ Configurationโ
External Server Configurationโ
External MCP servers are configured in .mcp-config.json:
{
"mcpServers": {
"filesystem": {
"name": "filesystem",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/"],
"transport": "stdio"
},
"github": {
"name": "github",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"transport": "stdio"
},
"custom": {
"name": "custom",
"command": "python",
"args": ["/path/to/server.py"],
"transport": "stdio",
"cwd": "/project/directory"
}
}
}
Environment Variablesโ
Set these in your .env file for server authentication:
# Custom Server Configuration
CUSTOM_API_KEY=your-api-key
CUSTOM_ENDPOINT=https://api.example.com
๐ ๏ธ Available MCP Serversโ
Filesystem Serverโ
Purpose: File and directory operations
Installation: neurolink mcp install filesystem
Available Tools:
read_file- Read file contentswrite_file- Create or overwrite filesedit_file- Make line-based editscreate_directory- Create directorieslist_directory- List directory contentsdirectory_tree- Get recursive tree viewmove_file- Move/rename filessearch_files- Search for files by patternget_file_info- Get file metadata
GitHub Serverโ
Purpose: GitHub repository management
Installation: neurolink mcp install github
Available Tools:
create_repository- Create new repositoriessearch_repositories- Search public repositoriesget_file_contents- Read repository filescreate_or_update_file- Modify repository filescreate_issue- Create GitHub issuescreate_pull_request- Create pull requestsfork_repository- Fork repositories
PostgreSQL Serverโ
Purpose: Database operations
Installation: neurolink mcp install postgres
Available Tools:
read-query- Execute SELECT querieswrite-query- Execute INSERT/UPDATE/DELETE queriescreate-table- Create database tableslist-tables- List available tablesdescribe-table- Get table schema
Brave Search Serverโ
Purpose: Web search capabilities
Installation: neurolink mcp install brave-search
Available Tools:
brave_web_search- Search the webbrave_local_search- Search for local businesses
Puppeteer Serverโ
Purpose: Browser automation
Installation: neurolink mcp install puppeteer
Available Tools:
puppeteer_navigate- Navigate to URLspuppeteer_screenshot- Take screenshotspuppeteer_click- Click elementspuppeteer_fill- Fill formspuppeteer_evaluate- Execute JavaScript
๐ง Advanced Usageโ
Transport Typesโ
STDIO Transport (Default)โ
Best for local servers and CLI tools:
neurolink mcp add local-server "python server.py" --transport stdio
SSE Transportโ
For web-based servers:
neurolink mcp add web-server "http://localhost:8080" --transport sse --url "http://localhost:8080/sse"
HTTP Transport (Streamable HTTP)โ
For remote MCP servers with authentication, retry, and rate limiting:
neurolink mcp add remote-api "https://api.example.com/mcp" \
--transport http \
--url "https://api.example.com/mcp" \
--headers '{"Authorization": "Bearer YOUR_TOKEN"}'
Configuration in .mcp-config.json:
{
"mcpServers": {
"remote-api": {
"transport": "http",
"url": "https://api.example.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
},
"httpOptions": {
"connectionTimeout": 30000,
"requestTimeout": 60000,
"idleTimeout": 120000,
"keepAliveTimeout": 30000
},
"retryConfig": {
"maxAttempts": 3,
"initialDelay": 1000,
"maxDelay": 30000,
"backoffMultiplier": 2
},
"rateLimiting": {
"requestsPerMinute": 60,
"maxBurst": 10,
"useTokenBucket": true
}
}
}
}
HTTP Transport Features:
- Custom headers for authentication (Bearer, API Key)
- Configurable connection and request timeouts
- Automatic retry with exponential backoff
- Rate limiting with token bucket algorithm
- OAuth 2.1 support with PKCE
See MCP HTTP Transport Guide for complete documentation.
Server Environment Configurationโ
Pass environment variables to servers:
neurolink mcp add secure-server "npx secure-mcp" --env '{"API_KEY": "secret", "DEBUG": "true"}'
Working Directoryโ
Set server working directory:
neurolink mcp add project-server "python local-server.py" --cwd "/path/to/project"
๐ Advanced MCP Featuresโ
NeuroLink provides advanced MCP capabilities for production environments with multiple servers and complex tool ecosystems.
Tool Routerโ
Intelligent tool call routing for multi-server environments with round-robin, least-loaded, capability-based, and session affinity strategies.
Tool Cacheโ
Cache tool results with configurable LRU, FIFO, or LFU eviction strategies, pattern-based invalidation, and cache statistics.
Request Batcherโ
Batch multiple tool calls for efficient execution with automatic batch sizing and server-grouped batching.
Tool Annotationsโ
Add safety metadata to tools (readOnly, destructive, idempotent) with automatic safety level inference and annotation-based filtering.
Custom MCP Serversโ
Create custom MCP servers using the MCPServerBase abstract class with built-in tool registration, event emission, and lifecycle management.
Elicitation Protocolโ
Interactive tool input during execution supporting text, select, multi-select, confirmation, file upload, and form elicitation types.
Multi-Server Managerโ
Load balancing and coordination across multiple MCP servers with server groups and a unified tool interface.
Full Documentation: See the MCP Enhancements Guide for complete API reference, configuration options, and usage examples.
๐จ Troubleshootingโ
Common Issuesโ
Server Not Availableโ
โ server: โ Not available
Solutions:
- Check server installation:
npm list -g @modelcontextprotocol/server-* - Verify command path:
which npx - Test command manually:
npx @modelcontextprotocol/server-filesystem / - Check environment variables
- Verify network connectivity (for SSE servers)
Connection Timeoutโ
โ Connection failed: Timeout connecting to MCP server
Solutions:
- Increase timeout (servers may need time to start)
- Check server logs for errors
- Verify server supports MCP protocol version 2024-11-05
- Test with simpler server first (filesystem)
Authentication Errorsโ
โ Connection failed: Authentication required
Solutions:
- Set required environment variables
- Check API key/token validity
- Verify permissions for required resources
- Review server documentation for auth requirements
Tool Execution Errorsโ
โ Tool execution failed: Invalid parameters
Solutions:
- Check tool parameter schema:
neurolink mcp test <server> - Validate JSON parameter format
- Review tool documentation
- Test with minimal parameters first
Debug Modeโ
Enable verbose logging for troubleshooting:
export NEUROLINK_DEBUG=true
neurolink mcp test filesystem
๐ Integration with AI Providersโ
Using MCP Tools with AI Generationโ
# Generate text that uses MCP tool results
neurolink generate "Analyze the README.md file and suggest improvements" --tools filesystem
# Stream responses that incorporate MCP data
neurolink stream "Create a GitHub issue based on the project status" --tools github
Multi-Tool Workflowsโ
# Combine multiple MCP servers in workflows
neurolink workflow "
1. Read project files (filesystem)
2. Analyze codebase (ai)
3. Create GitHub issue (github)
4. Update database (postgres)
"
๐ Resourcesโ
Official MCP Resourcesโ
NeuroLink MCP Resourcesโ
Community Serversโ
๐ What's Next?โ
Get Involvedโ
- Report issues on GitHub
- Join the MCP community
- Contribute server integrations
- Share usage examples
Ready to extend NeuroLink with unlimited external capabilities! ๐