Geo MCP Server
Click on "Install 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., "@Geo MCP ServerCreate a knowledge graph for my company with name and website properties."
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.
Geo MCP Server
MCP server providing full access to the Geo protocol SDK for knowledge graph operations. Build, query, and publish structured knowledge to the Geo decentralized knowledge network using the GRC-20 standard.
Features
38 tools covering the full Geo SDK surface: read, write, and govern
GraphQL read layer - search entities, browse spaces, query proposals and votes
DAO governance - vote on proposals, propose editor/subspace changes
Session-based op accumulation - build complex edits across multiple tool calls, then publish as a single atomic transaction
Publish-to-propose continuity -
propose_dao_editcan reuse the latest published ops for seamlesspublish_edit -> propose_dao_editflowsName-based resolution - reference properties, types, and entities by name instead of IDs
Gas-sponsored smart accounts - no testnet ETH needed (uses Pimlico paymaster)
Secure local file ingestion - load local JSON/markdown/text files from allowlisted paths
Related MCP server: Universal Ontology MCP
Installation
npm install
npm run buildConfiguration
Add to your MCP client config (e.g. Claude Code .mcp.json):
{
"mcpServers": {
"geo": {
"command": "node",
"args": ["/path/to/geo-mcp-server/dist/index.js"],
"env": {
"GEO_PRIVATE_KEY": "0x...",
"GEO_MCP_ALLOWED_PATHS": "/Users/me/Documents/research,/tmp"
}
}
}
}The GEO_PRIVATE_KEY environment variable is optional at startup - you can also configure the wallet at runtime using the configure_wallet tool.
GEO_MCP_ALLOWED_PATHS is optional and lets you allow additional directories for read_local_file and create_knowledge_graph_from_file. By default, only the current working directory is allowed.
GEO_GRAPHQL_URL optionally overrides the GraphQL API endpoint (default: https://testnet-api.geobrowser.io/graphql).
Quick Start
Typical workflow:
Configure wallet -
configure_walletwith your private keySetup space -
setup_spacecreates or finds your personal spaceBuild knowledge - use any graph tools to create properties, types, entities, and relations
Publish -
publish_editsends all accumulated ops on-chain in one transaction
Example: Create a Knowledge Graph in One Call
Use create_knowledge_graph for the best UX - it builds schema, entities, and relations all at once with name-based references:
create_knowledge_graph({
schema: {
properties: [
{ name: "Founded", dataType: "DATE" },
{ name: "Website", dataType: "TEXT" }
],
types: [
{ name: "Company", propertyNames: ["Founded", "Website"] }
]
},
entities: [
{
name: "Geo",
typeName: "Company",
values: [
{ propertyName: "Founded", type: "date", value: "2024-01-01" },
{ propertyName: "Website", type: "text", value: "https://geo.xyz" }
]
}
]
})Example: Publish a Local Graph Payload File
When your extraction pipeline writes a JSON payload locally, use one call to ingest it:
create_knowledge_graph_from_file({
filePath: "./outputs/claimify-paper-graph.json"
})Expected JSON shape inside the file:
{ "schema": { ... }, "entities": [...], "relations": [...] }or
{ "payload": { "schema": { ... }, "entities": [...], "relations": [...] } }
Tools Reference
Graph Operations (8 tools)
Tool | Description |
| Create a property definition with a data type |
| Create a type (schema) grouping properties |
| Create an entity with types, values, and relations |
| Create a relation between two entities |
| Create an image entity from a URL |
| Update an existing entity's name, values, or properties |
| Delete an entity |
| Delete a relation |
Space & Publishing (6 tools)
Tool | Description |
| Set up wallet with a private key for publishing |
| Create or find your personal space |
| Publish all accumulated ops as one on-chain edit |
| Propose accumulated ops as a DAO governance edit |
| View current session state (ops count, artifacts, wallet) |
| Discard all accumulated ops |
Advanced UX (7 tools)
Tool | Description |
| Generate one or more unique Geo IDs (dashless UUID v4) |
| Create properties + types in one call with name-based references |
| Build complete graph (schema + entities + relations) in one call |
| Build complete graph from a local JSON file payload |
| Read local text/json/binary (base64) from allowlisted paths |
| Add multiple property values to an existing entity |
| Get well-known Geo system IDs (types, properties, data types) |
Read & Query (10 tools)
Tool | Description |
| Full-text search for entities with optional space/type filters |
| Get full entity details (values, relations, backlinks, types) |
| Browse entities with filters for space, type, and name |
| Get space details with editor/member counts and recent proposals |
| Browse spaces with optional type filter (PERSONAL/DAO) |
| Get type definition with properties |
| List types in a specific space |
| List proposals for a space (newest first) |
| Get full proposal details with vote breakdown |
| List votes for a specific proposal |
DAO Governance (5 tools)
Tool | Description |
| Cast YES/NO/ABSTAIN vote on a DAO proposal |
| Propose adding a new editor to a DAO space |
| Propose removing an editor from a DAO space |
| Propose accepting a subspace into a DAO space |
| Propose removing a subspace from a DAO space |
Supported Data Types
TEXT, INTEGER, FLOAT, BOOLEAN, DATE, TIME, DATETIME, SCHEDULE, POINT, DECIMAL, BYTES, EMBEDDING, RELATION
Development
npm run dev # Run with tsx (hot reload)
npm run build # Compile TypeScript
npm run typecheck # Type check without emitting
npm start # Run compiled version
npm test # Run unit tests
npm run test:watch # Run tests in watch modeNetwork
Currently operates on the Geo testnet.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rickycambrian/geo_mcp_server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server