(BACKEND )An MCP-compatible vector search server built in Go, powered by Pinecone and OpenAI.
{
"mcpServers": {
"mcp-go-server-ak": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
(BACKEND )An MCP-compatible vector search server built in Go, powered by Pinecone and OpenAI.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 282 days ago. 1 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Manage Supabase projects — databases, auth, storage, and edge functions
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
Query and manage PostgreSQL databases directly from AI assistants
MCP Security Weekly
Get CVE alerts and security updates for Mcp Go Server Ak and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Go-based server for vector search functionality using Pinecone and OpenAI.
Copy the example environment file and configure your API keys:
# Copy the example environment file
cp env.example .env
# Edit the .env file with your actual API keys
nano .env
Your .env file should contain the following variables:
# Server Configuration
PORT=8081
JWT_SECRET=your-jwt-secret-key-here
# Pinecone Configuration (Required)
PINECONE_API_KEY=your-pinecone-api-key-here
PINECONE_ENVIRONMENT=your-pinecone-environment
PINECONE_INDEX_NAME=your-pinecone-index-name
PINECONE_HOST=your-pinecone-host-url
# OpenAI Configuration (Required)
OPENAI_API_KEY=your-openai-api-key-here
# GitHub OAuth Configuration (Optional for development)
GITHUB_CLIENT_ID=your-github-client-id
GITHUB_CLIENT_SECRET=your-github-client-secret
GITHUB_OAUTH_REDIRECT_URL=http://localhost:8081/auth/callback
# MCP Configuration (Optional)
MCP_SECRET_TOKEN=your-mcp-secret-token-here
⚠️ Important: Never commit your .env file to version control. It's already added to .gitignore to prevent accidental commits.
You need to obtain the following API keys:
Pinecone API Key:
PINECONE_API_KEY, PINECONE_INDEX_NAME, and PINECONE_HOSTOpenAI API Key:
OPENAI_API_KEY# Install dependencies
go mod tidy
# Run the application
go run main.go
The server will start on port 8081 (or the port specified in your .env file).
GET /healthPOST /searchPOST /index/auth/*For development, you can set dummy values for optional fields, but PINECONE_API_KEY and OPENAI_API_KEY are required for the application to start.