Veda MCP
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Veda MCPlist my Veda Knowledge Packs"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Veda MCP
Veda MCP lets Claude, Cursor, Hermes, Codex, and other MCP-capable AI apps read Veda Knowledge Packs through a read-only MCP toolset.
Veda = AI-readable Knowledge Pack repository.
You ask inside your AI app; Veda supplies source-aware context through MCP.
Tools
This MCP exposes a guided Veda workflow plus read/update draft helpers:
Tool | Purpose |
| Confirm the connection and return the current Veda MCP version. Call this first after installation/approval and tell the user the returned connection message. |
| Start a guided flow: call, create, or update a Knowledge Pack. |
| List Knowledge Packs allowed for your Veda MCP token. |
| Search allowed Knowledge Packs. |
| Attach one Knowledge Pack as the active pack for the current AI conversation. |
| Return pack structure, version, and file metadata. |
| Return source list for a pack. |
| Return pack-specific answer rules. |
| Return compact, source-aware context from a selected pack for a user question. |
| Guide draft creation for a new Knowledge Pack. |
| Guide an update draft for an existing Knowledge Pack. |
| Report missing or wrong knowledge. |
Related MCP server: docpack MCP Server
Quick install by asking your AI
Copy this into the AI app you use for coding/automation:
Install this MCP server for me.
GitHub repository:
https://github.com/tman7162-star/veda-mcp
Use this command-based MCP server:
npx -y github:tman7162-star/veda-mcp
Environment variables:
VEDA_MCP_URL=https://veda.necelab.net/mcp
VEDA_MCP_TOKEN=<my Veda connection key here>
After installing, test it by calling `get_veda_mcp_status`, tell me the returned Veda MCP version, then list my Veda Knowledge Packs.Manual MCP config
Most MCP clients accept a config shape similar to this:
{
"mcpServers": {
"veda": {
"command": "npx",
"args": ["-y", "github:tman7162-star/veda-mcp"],
"env": {
"VEDA_MCP_URL": "https://veda.necelab.net/mcp",
"VEDA_MCP_TOKEN": "veda_mcp_xxxxxxxxxxxxxxxxxxxx"
}
}
}
}For local development against a local Veda web app:
{
"mcpServers": {
"veda-local": {
"command": "node",
"args": ["C:/path/to/veda-mcp/src/index.js"],
"env": {
"VEDA_MCP_URL": "http://127.0.0.1:8795/mcp",
"VEDA_MCP_TOKEN": "veda_mcp_xxxxxxxxxxxxxxxxxxxx"
}
}
}
}Environment variables
Variable | Required | Default | Description |
| yes | - | Veda connection key generated/approved from your Veda account. |
| no |
| Veda MCP endpoint. Use a local URL for local development. |
| no |
| Request timeout in milliseconds. |
Security notes
Treat
VEDA_MCP_TOKENconnection key like a password.Start with read-only scopes:
pack:readandpack:context.If the token leaks, revoke/regenerate it in Veda.
Do not paste your token into public GitHub issues, screenshots, or commits.
Development
npm install
npm run check
npm run smoke:list-toolssmoke:list-tools verifies that the local stdio MCP server can start and list its tool definitions. It does not require a valid Veda token because it does not call Veda tools.
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Curated knowledge API for AI agents - skill packs, semantic search, validated patterns.
Knowledge base MCP for AI agents on iknow.dev. Search, read, and maintain via OAuth.
- KumbukaOAuthai.kumbuka
Governed, auditable knowledge your team curates for its AI assistants, self-hostable
Connect AI agents to ProductNow's context engine to search, create, review, and act.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to search, read, and traverse documentation bundles in Open Knowledge Format via MCP tools.108 npm71MIT
- AlicenseNot gradedqualityDmaintenanceEnables querying and exploring a bundled knowledge base through tools for manifest, table of contents, node retrieval, and full-text search.10 npm1MIT
- FlicenseAqualityCmaintenanceEnables AI assistants to search, read, and retrieve context from local knowledge bases with full-text search, absolute paths, and section-level details.4-
- AlicenseAqualityCmaintenanceEnables LLM agents to acquire token-budgeted, deterministic context packs from repositories, with hash-chained provenance for auditability.2MIT